![]() | ![]() | ![]() | ![]() |
SAS® Drug Development relies on PROC SCAPROC to list inputs and outputs for a job Manifest or in a SAS® Session.
Consider this program:
proc scaproc;
record 'c:\temp\functions.txt';
run;
libname out "c:\temp\";
proc fcmp outlib=out.funcs.inv2;
function inverse2(in);
if n=0 then inv=.;
else inv=1/in;
return(inv);
endsub;
run;
proc fcmp outlib=out.funcs.inv2;
data _null_;
x=5;
y=inverse2(x);
put y=;
run;
proc scaproc ;
write;
run;
There is no notification in the functions.txt file that indicates funcs.sas7bndx file has been created as an OUTPUT. The funcs.sas7bndx file defines the index for the function and is a file that should appear in the job Manifest.
Product Family | Product | System | Product Release | SAS Release | ||
Reported | Fixed* | Reported | Fixed* | |||
SAS System | SAS Life Science Analytics Framework | Linux for x64 | 4.7 | 5.1.1 | 9.4 TS1M3 | 9.4 TS1M5 |
SAS System | SAS Drug Development | Linux for x64 | 4.5.1 | 9.4 TS1M2 |